home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / logrotate.d / cups < prev    next >
Text File  |  2009-10-15  |  248b  |  16 lines

  1. /var/log/cups/*log {
  2.     daily
  3.     missingok
  4.     rotate 7
  5.     sharedscripts
  6.     postrotate
  7.         if [ -e /var/run/cups/cupsd.pid ]; then
  8.             invoke-rc.d --quiet cups force-reload > /dev/null
  9.             sleep 10
  10.         fi
  11.     endscript
  12.     compress
  13.     notifempty
  14.     create 640 root lpadmin
  15. }
  16.